body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f4f8;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 30px;
  width: 400px;
  text-align: center;
}

.search-container {
  display: flex;
  margin-bottom: 20px;
}

#cityInput {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
}

#searchBtn {
  padding: 10px 15px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#searchBtn:hover {
  background-color: #357abd;
}

.weather-display {
  text-align: left;
}

.current-weather {
  background-color: #f1f8ff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.forecast {
  display: flex;
  justify-content: space-between;
}

.forecast-day {
  background-color: #e6f2ff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  width: 18%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Error handling styles */
.error {
  color: #dc3545;
  text-align: center;
  margin: 10px 0;
}